home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra / phan1zz.zip / SAMPLE.BAT < prev    next >
DOS Batch File  |  1995-09-14  |  462b  |  25 lines

  1. REM : example .bat file for standlone PHANTOM OF THE CATACOMBS:
  2. @echo off
  3. cd\games\lord\phan
  4. phan game 1
  5. cd\pb\node1
  6.  
  7. REM: you can pass variables as well:
  8. @echo off
  9. cd\games\lord\phan
  10. phan game %1
  11. cd\pb\node%1
  12.  
  13. REM: if you use custom .CFG files ie: CONFIG1.CFG, CONFIG2.CFG do this:
  14. @echo off
  15. cd\games\lord\phan
  16. phan game 1 custom
  17. cd\pb\node1
  18.  
  19.  
  20. REM: put this in your nightly maintenance .bat file
  21. @echo off
  22. cd\games\lord\phan
  23. phan maint
  24.  
  25.